{% extends "base.html" %} {% block head %} {{ super() }} {% endblock %} {% block title %}Browse{% endblock %} {% block page_content %}
{% if trees %} {% for tree in trees %} {{ tree|safe}} {% endfor %} {% endif %}
{% if heading %}

{{ heading | safe }}

{% endif %}

ID {{ docid | safe }} ; {{ museumname | safe }}

{% if alltups %}

Properties

{% for list in alltups %} {% for item in list %} {% endfor %}
{{ item[0] }} {{ item[1]|safe }}

{% endfor %} {% endif %} {% if allprops %}

All Properties

{% for item in allprops %} {% endfor %}
{{ item[0] }} {{ item[1]|safe }}

{% endif %}
{% endblock %}